home *** CD-ROM | disk | FTP | other *** search
/ Dos/V Magazine 1995 September 1 / CD [VMAG950901].bin / theway / contentp.dir / 00134.ls < prev    next >
Encoding:
Text File  |  1995-07-13  |  374 b   |  17 lines

  1. on startMovie
  2.   cursor(4)
  3. end
  4.  
  5. on soundfader chan
  6.   if soundBusy(chan) = 1 then
  7.     set sttime to the ticks + the volume of sound 1
  8.     repeat while the volume of sound chan > chan
  9.       set the volume of sound chan to sttime - the ticks
  10.       updateStage()
  11.     end repeat
  12.     sound stop chan
  13.     set the volume of sound chan to 255
  14.     set the soundLevel to 5
  15.   end if
  16. end
  17.